home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SN_Disk1.adf / fontstohd.exe < prev    next >
Text File  |  1992-03-09  |  1KB  |  45 lines

  1. echo "*nCopy Snapshot Fonts: to Hard Disk...*n"
  2.  
  3. if EXISTS fonts:testfile
  4.  
  5.  echo "*NThe actual FONT-Directory is assigned to the Snapshot Disk."
  6.  echo "Please boot from your Harddisk, not from this floppy..."
  7.  echo "*NCan't install FONT to Harddisk..."
  8.  
  9. else
  10.  
  11.  if EXISTS fonts:breit
  12.   echo "Detect old font... Delete it..."
  13.   protect fonts:breit/6 rwed
  14.   protect fonts:breit.font rwed
  15.   protect fonts:breit rwed
  16.   delete fonts:breit/6
  17.   delete fonts:breit.font
  18.   delete fonts:breit
  19.  endif
  20.  
  21.  if not EXISTS fonts:snapshot
  22.   makedir fonts:snapshot
  23.   echo "OK... Directory 'FONTS:snapshot' created..."
  24.  else
  25.   echo "OK... Directory 'FONTS:snapshot' already exists..."
  26.  endif
  27.  
  28.  if not EXISTS fonts:snapshot.font
  29.   copy :fonts/snapshot.font fonts:snapshot.font
  30.   echo "OK... File 'FONTS:snapshot.FONT' installed..."
  31.  else
  32.   echo "OK... File 'FONTS:snapshot.FONT' already exists..."
  33.  endif
  34.  
  35.  if not EXISTS fonts:snapshot/6
  36.   copy :fonts/snapshot/6 fonts:snapshot/6
  37.   echo "OK... File 'FONTS:snapshot/6' installed..."
  38.  else
  39.   echo "OK... File 'FONTS:snapshot/6' already exists..."
  40.  endif
  41.  
  42. endif
  43.  
  44. wait 3
  45.